Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | /** * Logging Configuration * Winston logger with daily rotation and multiple transports * * @module config/logger */ const winston = require('winston'); const DailyRotateFile = require('winston-daily-rotate-file'); const path = require('path'); // Define log levels const levels = { error: 0, warn: 1, info: 2, http: 3, debug: 4, }; // Define log colors const colors = { error: 'red', warn: 'yellow', info: 'green', http: 'magenta', debug: 'blue', }; winston.addColors(colors); // Define log format const format = winston.format.combine( winston.format.timestamp({ format: 'YYYY-MM-DD HH:mm:ss' }), winston.format.errors({ stack: true }), winston.format.splat(), winston.format.json() ); // Define console format (for development) const consoleFormat = winston.format.combine( winston.format.colorize({ all: true }), winston.format.timestamp({ format: 'YYYY-MM-DD HH:mm:ss' }), winston.format.printf( (info) => `${info.timestamp} ${info.level}: ${info.message}` ) ); // Define transports const transports = [ // Console transport new winston.transports.Console({ format: consoleFormat, }), // Error log file new DailyRotateFile({ filename: path.join('logs', 'error-%DATE%.log'), datePattern: 'YYYY-MM-DD', level: 'error', maxSize: '20m', maxFiles: '14d', format: format, }), // Combined log file new DailyRotateFile({ filename: path.join('logs', 'combined-%DATE%.log'), datePattern: 'YYYY-MM-DD', maxSize: '20m', maxFiles: '14d', format: format, }), ]; // Create logger instance const logger = winston.createLogger({ level: process.env.LOG_LEVEL || 'info', levels, format, transports, exitOnError: false, }); // Request logger middleware const requestLogger = (req, res, next) => { const start = Date.now(); res.on('finish', () => { const duration = Date.now() - start; const message = `${req.method} ${req.originalUrl} ${res.statusCode} ${duration}ms`; if (res.statusCode >= 500) { logger.error(message); } else if (res.statusCode >= 400) { logger.warn(message); } else { logger.http(message); } }); next(); }; module.exports = { logger, requestLogger, }; |